projects
/
ostree.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
10bf223
)
triggers: Quiet GConf trigger
author
Colin Walters
<walters@verbum.org>
Tue, 19 Jun 2012 19:03:16 +0000
(15:03 -0400)
committer
Colin Walters
<walters@verbum.org>
Tue, 19 Jun 2012 19:03:16 +0000
(15:03 -0400)
The default is just way, way too verbose.
src/triggers/triggers.d/0050gconf.trigger
patch
|
blob
|
history
diff --git
a/src/triggers/triggers.d/0050gconf.trigger
b/src/triggers/triggers.d/0050gconf.trigger
index 03b73fb730ecb9edd6732f78c6364b796f05b364..f7a7c380ea78718542359d97a406cfd32976c81c 100755
(executable)
--- a/
src/triggers/triggers.d/0050gconf.trigger
+++ b/
src/triggers/triggers.d/0050gconf.trigger
@@
-22,6
+22,8
@@
if test -x "$(which gconftool-2 2>/dev/null)"; then
GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
export GCONF_CONFIG_SOURCE
for f in /etc/gconf/schemas/*.schemas; do
- gconftool-2 --makefile-install-rule "$f"
+ # The default output is extremely chatty...redirect to
+ # /dev/null here until there's a way to make it quieter.
+ gconftool-2 --makefile-install-rule "$f" >/dev/null
done
fi